go.uber.org/atomic.Uint32.v (field)
8 uses
go.uber.org/atomic (current package)
uint32.go#L35: v uint32
uint32.go#L40: return &Uint32{v: val}
uint32.go#L45: return atomic.LoadUint32(&i.v)
uint32.go#L50: return atomic.AddUint32(&i.v, delta)
uint32.go#L55: return atomic.AddUint32(&i.v, ^(delta - 1))
uint32.go#L77: return atomic.CompareAndSwapUint32(&i.v, old, new)
uint32.go#L82: atomic.StoreUint32(&i.v, val)
uint32.go#L87: return atomic.SwapUint32(&i.v, val)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |